home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmPictures
- AutoRedraw = -1 'True
- Caption = "Picture Controls"
- ClientHeight = 3810
- ClientLeft = 4065
- ClientTop = 2370
- ClientWidth = 4560
- Height = 4215
- Left = 4005
- LinkTopic = "Form4"
- ScaleHeight = 254
- ScaleMode = 3 'Pixel
- ScaleWidth = 304
- Top = 2025
- Width = 4680
- Begin PictureBox Picture1
- AutoRedraw = -1 'True
- AutoSize = -1 'True
- Height = 2280
- Index = 0
- Left = 630
- Picture = FRMPICS.FRX:0000
- ScaleHeight = 2250
- ScaleWidth = 3000
- TabIndex = 0
- Top = 570
- Width = 3030
- End
- Begin Image Image1
- Height = 2250
- Index = 0
- Left = 120
- Picture = FRMPICS.FRX:3B12
- Top = 120
- Width = 3000
- End
- Sub Image1_Click (Index As Integer)
- On Error Resume Next
- Dim i As Integer, j As Integer
- i = 1
- Do
- Load Image1(i)
- Image1(i).Move Image1(i - 1).Left + 4, Image1(i - 1).Top + 4
- Image1(i).Visible = True
- i = i + 1
- Loop Until Err
- For j = i To 1 Step -1
- Unload Image1(i)
- Next j
- MsgBox i & " Pictures", 64, "Image Control"
- frmPictures.Refresh
- End Sub
- Sub Picture1_Click (Index As Integer)
- On Error Resume Next
- Dim i As Integer, j As Integer
- i = 1
- Do
- Load Picture1(i)
- Picture1(i).Move Picture1(i - 1).Left + 4, Picture1(i - 1).Top + 4
- Picture1(i).Visible = True
- i = i + 1
- Loop Until Err
- For j = i To 1 Step -1
- Unload Picture1(i)
- Next j
- MsgBox i & " Pictures", 64, "Picture Control"
- frmPictures.Refresh
- End Sub
-